home *** CD-ROM | disk | FTP | other *** search
/ The PC-SIG Library 10 / The PC-Sig Library - Shareware for the IBM PC and Compatibles (PC-SIG)(Tenth Edition Disks 1-2804)(1991).iso / PC_SIGCD / 15 / 1 / DISK1512.ZIP / MANUAL < prev    next >
Text File  |  1990-06-30  |  61KB  |  1,513 lines

  1.  
  2.                          MARK RECORD Plus V2.82
  3.  
  4.                 (C) Copyright Andy Phillips, 1985-90
  5.                 (C) Copyright Microsoft Corp., 1985-90 (portions)
  6.                            ALL RIGHTS RESERVED
  7.  
  8.  
  9.                                CONTENTS
  10.  
  11.                  1.  INTRODUCTION             1
  12.  
  13.                  2.  SYSTEM SET UP            2
  14.  
  15.                  3.  THE MAIN MENU            4
  16.  
  17.                  4.  SETTING UP A NEW COURSE  4
  18.  
  19.                  5.  RECORDING MARKS          7
  20.  
  21.                  6.  EDITING MARKS            9
  22.  
  23.                  7.  PRINTING REPORTS        14
  24.  
  25.                  8.  OTHER OPTIONS           17
  26.  
  27.                               APPENDICES
  28.  
  29.                  1.  CALCULATIONS            18
  30.  
  31.                  2.  DATA FILE ORGANIZATION  19
  32.  
  33.  
  34.                  INDEX                       21
  35.  
  36.                  USER REGISTRATION           22
  37.  
  38.  
  39.  
  40.  
  41.  
  42.  
  43.  
  44.  
  45.  
  46.  
  47.  
  48.  
  49.  
  50.  
  51.  
  52.  
  53.  
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63.  
  64.  
  65.  
  66.  
  67.  
  68.      page 1            INTRODUCTION
  69.  
  70.      1. INTRODUCTION
  71.  
  72.      This program, written in Compiled Basic, is intended for
  73.      teachers who wish to use their computer to record and calculate
  74.      their students' marks.  The program has been designed to run on
  75.      most IBM compatible computers with one or more floppy disk drives
  76.      and at least 128K of memory.  Either a monochrome or colour
  77.      monitor may be used.  The program is ideally suited for a hard
  78.      drive system, however, it can be used effectively with either a
  79.      double 5.25 floppy drive, or a single 3.5 drive system.
  80.  
  81.      Please take the time to read through this manual carefully
  82.      before attempting to use the program.  The section on SETTING UP A
  83.      NEW COURSE is extremely important.  Appendix 1. CALCULATIONS
  84.      should be studied in detail to make certain that the program
  85.      calculates student marks as you would.
  86.  
  87.      LIMITATIONS
  88.  
  89.      This program can handle up to 50 students in a given class, up to 50
  90.      sets of marks for each student, and from one to four terms per
  91.      semester.  It works equally well for semestered or non-semestered
  92.      schools.  The number of courses saved in any given data path
  93.      is restricted to 50 or less.  The largest possible course (50
  94.      students and 50 sets of marks) requires approximately 23K for its
  95.      data, another 23K if the data is backed up, and 9K more if
  96.      individual comments are saved.  An average class will require
  97.      approximately 15K, including back up and comments.  Version 3.0
  98.      will double the number of tests and students that the program will
  99.      handle.
  100.  
  101.      PROGRAM FILES
  102.  
  103.      The program itself consists of six modules, each of which
  104.      handles different tasks.  These are outlined below:
  105.  
  106.      MRS.EXE    is the System module.  It is primarily used to record
  107.                 marks.
  108.      MRE.EXE    is the Edit module.  It allows the user to edit any
  109.                 information previously recorded.
  110.      MRP.EXE    is the Print module.  This module is used to print
  111.                 reports and class lists.
  112.      MRF.EXE    is the File management module.
  113.      MRV.EXE    is the Utilities module.  It handles all the remaining
  114.                 various features such as conversion tables and bar graphs.
  115.      BRUN10.EXE is the module which allows a compiled program to run.  It
  116.                 must be included to enable the other modules to run.
  117.  
  118.      An optional COMMENTS file may be found on your diskette.  This
  119.      file consists of a bank of comments used by the MRP module.  It
  120.      can be created or edited using any word processor that produces
  121.      an ASCII text file.  Each record in the file consists of four, fifty
  122.      character lines.  The first contains the comment number, while the
  123.      remaining three contain the comment itself.  Each line must begin
  124.      and end with the " character.  This file should reside in the same
  125.      directory as your data - if not, the program will check the system
  126.      directory for the COMMENTS file.
  127.  
  128.  
  129.  
  130.  
  131.  
  132.  
  133.  
  134.      page 2            INTRODUCTION
  135.  
  136.      The following files are included to facilitate the set-up of
  137.      your system.
  138.  
  139.      AUTOEXEC.BAT is a batch file that will run the program
  140.                   automatically when the system is turned on or re-booted.
  141.      MANUAL       is this set of notes.
  142.  
  143.      The remaining files used by the program are generated by the
  144.      first four modules mentioned earlier.  These are:
  145.  
  146.      MRX        is a list of the data files on the disk.
  147.      MRL        contains the letter grade conversion factors to be
  148.                 used by the program.
  149.      MRO.PRT    contains the printer codes for your printer.
  150.      CODES.PRT  is an optional printer code file for your printer.  Use it
  151.                 if your printer requires long strings of code for various
  152.                 functions.
  153.  
  154.      *.D*       holds the data for individual classes.
  155.      *.V*       stores backed up data for individual classes.
  156.      *.P*       stores the printer settings used by the MRP module.
  157.      *.W*       holds the category weightings for each class.
  158.      *.C*       are lists of comments saved for individual classes.
  159.      *.L*       are class list saved as files.
  160.      *.S*       are seating plans saved as files.
  161.      *.A*       are printed reports saved on disk rather that being
  162.                 sent to the printer.
  163.  
  164.      2. SYSTEM SET-UP
  165.  
  166.      1) SINGLE OR DUAL 5.25 FLOPPY DRIVE SYSTEM
  167.  
  168.         -Format a DOS 2.0 or later SYSTEM diskette and copy the
  169.          M*.EXE and *.BAT files from the MASTER#1 disk onto it:
  170.  
  171.          A>copy A:M*.EXE B:           ... Press <Enter>
  172.          A>copy A:*.BAT B:            ... Press <Enter>
  173.  
  174.         -Format a DOS 2.0 or later DATA diskette to be used to store
  175.          your data files.
  176.         -Copy the COMMENTS file and the BRUN10.EXE file from the MASTER#2
  177.          disk to the DATA disk.
  178.  
  179.          A>copy A:COMMENTS B:         ... Press <Enter>
  180.          A>copy A:BRUN10.EXE B:       ... Press <Enter>
  181.  
  182.         -Place your system disk in drive A, and data disk in drive B.
  183.         -When you reboot, the program will run automatically, and will
  184.          use drive B for data.
  185.         -If only one floppy drive is available, you will be prompted to
  186.          switch diskettes whenever data is read or stored.
  187.                   
  188.      NOTE:  The file COMMAND.COM must be present on your system diskette.
  189.             Also, the AUTOEXEC.BAT file must contain the line:
  190.             path=A:\;B:\;
  191.             (See below if you need to add this line to AUTOEXEC.BAT)
  192.  
  193.  
  194.  
  195.  
  196.  
  197.  
  198.  
  199.  
  200.      page 3                SYSTEM SET-UP
  201.  
  202.      2) SINGLE 3.5 FLOPPY DRIVE SYSTEM
  203.  
  204.         -Format a DOS 3.1 or later SYSTEM diskette and copy all of the
  205.          files from the MASTER disk onto it:
  206.  
  207.          A>copy A:*.* B:              ... Press <Enter>
  208.  
  209.         -Place your system disk in drive A.
  210.         -Create a new AUTOEXEC.BAT file by typing:
  211.  
  212.          A:copy con autoexec.bat      ... Press <Enter>
  213.          path=A:\;B:\;                ... Press <Enter>
  214.          mrs                          ... Press <enter>
  215.          ^Z                           ... Press <Enter>
  216.                        ... Press the F6 key to produce the ^Z
  217.  
  218.         -When you reboot, the program will run automatically, and will
  219.          use drive A for data.
  220.  
  221.      3) FIXED (HARD) DRIVE SYSTEM
  222.  
  223.         -Create a subdirectory called MRP           ....    C>MD\MRP
  224.         -Change to this subdirectory                ....    C>CD\MRP
  225.         -Copy all the files from the MASTER disk(s) ....    C>COPY A:*.*
  226.         -To run the program, make sure that you
  227.          are in the MRP subdirectory, and enter     ....    C>MRS
  228.  
  229.      NOTE: You can add the data path name as a parameter when starting
  230.            the program.  The format must be followed exactly or strange
  231.            things may happen.  Here are some acceptable examples:
  232.  
  233.            A>MRS "B:"          (data on drive B:)
  234.            A>MRS "B:\MARKS\"   (data in subdirectory MARKS on drive B:)
  235.            C>MRS "C:\MRP\DAT\" (data in subdirectory MRP\DAT on drive C:)
  236.  
  237.            The format is MRS followed by 1 blank followed by the path,
  238.            which must be within quotation marks if called from a batch
  239.            file.
  240.  
  241.     
  242.  
  243.  
  244.  
  245.  
  246.  
  247.  
  248.  
  249.  
  250.  
  251.  
  252.  
  253.  
  254.  
  255.  
  256.  
  257.  
  258.  
  259.  
  260.  
  261.  
  262.  
  263.  
  264.  
  265.  
  266.      page 4                  THE MAIN MENU
  267.  
  268.      3. THE MAIN MENU
  269.  
  270.      The main menu provides you with 10 options.  These are listed below
  271.      together with a brief description:
  272.  
  273.      F1) RECORD MARKS/SET UP NEW COURSE  Enter marks to be recorded.
  274.  
  275.      F2) EDIT MARKS/STUDENT NAMES  Edit any information previously recorded.
  276.  
  277.      F3) PRINTED REPORTS       Print individual or class reports.
  278.  
  279.      F4) BAR GRAPHS            Display or print bar graphs of recorded marks.
  280.  
  281.      F5) FILE MANAGER          Back up or rename files, or recover lost files.
  282.  
  283.      F6) CONVERSION/COMPLETION Display or print mark conversion/completion
  284.          TABLES                tables.
  285.  
  286.      F7) CHANGE DATA PATH      Select a different drive or subdirectory
  287.                                for your data.
  288.      F8) PRINT CLASS LISTS/    Print lists of student names (no marks) or
  289.          SEATING PLANS         seating plans.
  290.  
  291.      F9) CONFIGURE PRINTER/    Allows you to set your printer commands if
  292.          RESET SCREEN COLOURS  you have a non-Epson type printer, and to set
  293.                                the foreground and background screen colours.
  294.  
  295.      F0) EXIT                  Exit to DOS.
  296.  
  297.      To accept the default option (flashing) just press <Enter>.
  298.      Pressing any digit from 0 to 9 will activate that option.
  299.      The corresponding function keys may be used, or you can use the
  300.      up or down cursor keys to select your option.  Note:  F0 refers
  301.      to the F10 function key.
  302.  
  303.      4. SETTING UP A NEW COURSE
  304.  
  305.      RECORD MARKS MENU
  306.  
  307.      You are offered the 5 options listed below:
  308.  
  309.      F1) RECORD MARKS             Enter marks for courses already set up.
  310.  
  311.      F2) SET UP A NEW COURSE      Enter the information for a new course.
  312.  
  313.      F3) RESET ALIAS FEATURE FROM OFF TO ON   Set to OFF if you do not
  314.                                   want to use student alias or number.
  315.      F4) RESET LETTER GRADES      Set the letter grades to fit your
  316.                                   requirements.  See page 13.
  317.      F5) RESET CATEGORY WEIGHTS   You may use this feature to arbitrarilly
  318.                                   pre-set the category weights.  These
  319.                                   values are only used when consolidating.
  320.      F0) RETURN TO MAIN MENU
  321.  
  322.  
  323.  
  324.  
  325.  
  326.  
  327.  
  328.  
  329.  
  330.  
  331.  
  332.      page 5                SETTING UP A NEW COURSE
  333.  
  334.      SETTING UP A NEW COURSE
  335.  
  336.      You will be asked for the following information relating to the
  337.      course you wish to set up:  (Any information that you are uncertain
  338.      of may be skipped - errors and omissions can be corrected later.)
  339.  
  340.      A) COURSE NAME       Use up to 8 characters (A to Z or 0 to 9, do
  341.                           not use spaces or other non-alphanumerics).
  342.  
  343.      B) SECTION NUMBER    Use up to 2 digits. (A leading 0 will be added
  344.                           to single digit sections.  The period number
  345.                           may be used if preferred.)
  346.  
  347.      If data for a course with this name and section number already
  348.      exists, you will be given the option of entering a new course name,
  349.      or of replacing the existing data with the new.
  350.  
  351.      A) TEACHER NAME                You may include MR or MS etc.
  352.      B) FLIP-FLOP           Y/N     If selected, this option will switch
  353.                                     the % for the exam with the % for the
  354.                                     term - only if it benefits the student.
  355.                                     This option may be turned on/off for 
  356.                                     each term.  The default is (N)o.
  357.      C) DROP LOWEST MARK    Y/N     If selected, the lowest (M)ajor term
  358.                                     test mark obtained by the student
  359.                                     will not be counted against him.
  360.                                     Other marks are not affected by
  361.                                     this option. This option may be turned
  362.                                     on/off for each term. The default is (N)o.
  363.      D) MINIMUM PASSING %AGE        Set to the lowest percentage that
  364.                                     is to be considered a pass.  The
  365.                                     usual value is 50 for 50%.
  366.      E) NUMBER OF TERMS             The default is 2, but 1, 3 or 4 terms
  367.                                     are allowed.  A term is defined as
  368.                                     a set of marks which are assigned a
  369.                                     proportion of the YEAR MARK.  A term
  370.                                     must end with an EXAM MARK. (For
  371.                                     courses with no term exam, you
  372.                                     must create a dummy exam, giving each
  373.                                     student an 'abs' for a mark.)
  374.      F) % OF YEAR FOR TERM 1        If you have 2 or more terms, this is
  375.                                     the percent of the YEAR MARK (ex-
  376.                                     cluding the final exam) that the
  377.                                     first term will count.
  378.      G) % OF YEAR FOR TERM 2        If you have 3 terms, this is the
  379.                                     percent of the YEAR MARK that the
  380.                                     second term will count.
  381.      H) % OF YEAR FOR TERM 3        If you have 4 terms, this is the
  382.                                     percent of the YEAR MARK that the
  383.                                     third term will count.
  384.  
  385.  
  386.  
  387.  
  388.  
  389.  
  390.  
  391.  
  392.  
  393.  
  394.  
  395.  
  396.  
  397.  
  398.  
  399.      page 6               SETTING UP A NEW COURSE
  400.  
  401.      Notice that F), G) and H) may be omitted depending on the number of
  402.      terms.  The percent assigned to the last term will be calculated
  403.      automatically.
  404.  
  405.      Exam marks are used by the program to signal the end of a term so
  406.      that a REPORT MARK can be calculated.  Thus, if no actual exam is
  407.      given, you will have to create a dummy exam.  The data you enter for
  408.      this exam is not important as long as you assign each student a
  409.      'abs' mark.  If there are 2 or more terms, a YEAR TO DATE mark will
  410.      be automatically calculated once the first term's exam mark has been
  411.      entered.  If you wish to use pre-determined category weights, you
  412.      will need to consolidate and recalculate (See EDITING MARKS).
  413.  
  414.      Some teachers may prefer to adjust the weight assigned to term 1
  415.      on a continuing basis, as they work through term 2.  This will
  416.      make the YEAR TO DATE mark more meaningful, especially early in
  417.      term 2 where the first test mark will actually assume the total
  418.      weight assigned to term 2.
  419.  
  420.      It must be emphasized that the percentages assigned to each term
  421.      refer to how the YEAR MARK is to be calculated.  The YEAR MARK is
  422.      the one averaged with the final exam to produce the final REPORT
  423.      MARK.  As an example, say that in a two term system, the first term
  424.      REPORT MARK (an average of term tests and exam) is to be combined
  425.      with the second TERM MARK (which does not include the final exam) in
  426.      the ratio of 60:40.  You would enter 60 at the F) prompt.  Note: the
  427.      percent assigned to each exam will be entered as the weight of
  428.      that exam at the time that the exam marks are being entered.
  429.  
  430.      At this point, you can either change the values that you have
  431.      entered, or save them.
  432.  
  433.      NOTE:  Pressing the <Esc> key will return you to the previous menu in
  434.      almost all cases.  Any data that has not been saved may be lost.
  435.  
  436.      Next, you will be required to type in the names of the students in
  437.      your class. Type their surname followed by a space, or comma, followed
  438.      by their given name.  Do not use lower case. (You will have noticed
  439.      that upper case has been automatically selected by the program, which
  440.      also automatically turns on the numeric keypad -- Please do not press
  441.      either the <Num Lock> nor <Caps Lock> keys while in the program.)
  442.  
  443.  
  444.  
  445.  
  446.  
  447.  
  448.  
  449.  
  450.  
  451.  
  452.  
  453.  
  454.  
  455.  
  456.  
  457.  
  458.  
  459.  
  460.  
  461.  
  462.  
  463.  
  464.  
  465.      page 7                SETTING UP A NEW COURSE
  466.  
  467.      If you have decided to use the ALIAS FEATURE, after each name has
  468.      been entered, you will be prompted to add a 1 to 10 character 'alias'
  469.      or student number.  This 'alias' can be used to print class lists
  470.      that can be posted and still retain the confidentiality of each
  471.      student.  Just press <Enter> each time if you do not wish to assign
  472.      an alias to the student.
  473.  
  474.      If you notice any obvious mistakes in the list, press the <Tab> key
  475.      (found right under the <Esc> key) to move back to the name to allow
  476.      you to re-enter it.  To move back down the list press <Enter>. Enter
  477.      the names in any order.  When the list is complete, you will be given
  478.      the option of having the list sorted alphabetically.
  479.  
  480.      5. RECORDING MARKS
  481.  
  482.      RECORDING MARKS  (See SPREADSHEET on page 11 for an alternate method)
  483.  
  484.      Before you can record any marks you must select the appropriate
  485.      course.  A list of all the courses that have previously been set up
  486.      will be provided.  To select the course, type its number.
  487.  
  488.      For your convenience, the title of the last set of marks to be
  489.      entered will be displayed. For each set of marks you will have to
  490.      give the following information:
  491.  
  492.      A) TOPIC OR DESCRIPTION  Give a title for the evaluation data to be
  493.                               entered.  E.g. TEST 1
  494.  
  495.      B) EVALUATION DATE       Enter the date in the form mmm dd.
  496.                               E.g. MAY 03 (use up to 8 characters).
  497.  
  498.      C) CATEGORY        You must select a category for the evaluation.
  499.                         This can be any letter from A to Z, or @ for
  500.                         attendance and ! for lates.  Four letters, 
  501.                         (T)erm, (Y)ear, (F)inal and (E)xam are reserved
  502.                         and should be avoided.  If E for exam is
  503.                         selected, you will be warned that no other
  504.                         marks can later be entered for that term, so
  505.                         make certain that all of the term's evaluations
  506.                         have been entered before entering the exam mark.
  507.                         Use (S) as the category when setting up a seating
  508.                         plan - make sure you weight the mark at 0!
  509.  
  510.      D) MAXIMUM MARK ALLOWED  This is the total number of marks available
  511.                               for  this evaluation.  You cannot enter a 0
  512.                               since that would result in division by 0
  513.                               when the percentages are calculated.  For
  514.                               attendance or lates, enter any non-zero
  515.                               value such as 100.  For a seating plan use
  516.                               RS where R is the number of rows and S is the
  517.                               number of seats in a row.  Any arragement from
  518.                               41 to 99 is acceptable. (56 = 5 rows, 6 seats)
  519.  
  520.  
  521.  
  522.  
  523.  
  524.  
  525.  
  526.  
  527.  
  528.  
  529.  
  530.  
  531.      page 8                RECORDING MARKS
  532.  
  533.      E) MARK VALUE (WEIGHT)   This is the weight you wish to assign this
  534.                               evaluation.  When the TERM MARK is
  535.                               calculated, the weights are added to arrive
  536.                               at a total weight.  Thus the weight you
  537.                               assign to any given evaluation determines
  538.                               its importance in the calculation of the
  539.                               TERM MARK.  The weight assigned to an exam
  540.                               is the percentage of the REPORT MARK
  541.                               assigned to that exam.  Set the weights of
  542.                               attendance, lates and seating plans to 0.
  543.  
  544.     [Note:  If your department has a fixed policy assigning specific
  545.      weights to given categories, such as "homework 10%", use the
  546.      following procedure:
  547.  
  548.      1) Select RESET CATEGORY WEIGHTS from the RECORD MARKS MENU.
  549.      2) Assign a weight to each category you intend to use.  For example,
  550.         set M (major tests) at 70, Q (quizzes) at 20, P (participation)
  551.         at 10 and leave all the others at 0.
  552.      3) Select CONSOLIDATE from the EDIT MARKS MENU.                     
  553.      4) Consolidate the categories selected above, then select RECALULATE
  554.         TERM MARKS from the same EDIT MARKS MENU.]
  555.  
  556.      Once these values have been saved, you will be asked to enter the
  557.      individual mark for each student.  You can enter any positive mark
  558.      from 1 to 3 digits followed by an optional single character code.
  559.      This code can be any printable character.  E.g. 27M  (for make-up
  560.      test), 50* (for adjusted mark).  Do not use F as it is reserved
  561.      for a failing mark.  F's are automatically inserted by the program.
  562.  
  563.      If you prefer, you may enter the letter grades A+,A,A-,...,F+,F,F-.
  564.      The program will instantly convert these to the numeric values that
  565.      have previously been assigned.  You can redefine these values using
  566.      RECORD MARKS menu.  Pressing just <Enter> will assign "abs " to the
  567.      student, which results in the test not being counted for that student.
  568.      This has the effect of assigning an ESTIMATED MARK to that student.
  569.      An abs student will not appear on a printed seating plan.
  570.  
  571.      Pressing the <Esc> key, while entering marks, will cause all marks not
  572.      yet entered to be set to 'abs'.  This feature is useful in setting up
  573.      the 'dummy' exam referred to above.  If you have entered a few marks
  574.      for a test and have to finish later, just press the <Esc> key to save
  575.      your work.  Use the SPREADSHEET option of the EDIT MARKS menu to
  576.      complete your mark entry.  Note:  Use the <Tab> and <Enter> keys to
  577.      move up and down the list if you need to correct any errors.
  578.  
  579.      If you wish to assign decimal marks such as 23.7 you cannot use the
  580.      code feature.  E.g. 23.7M will not record properly.  Only 1 decimal
  581.      place is allowed.
  582.  
  583.      When @ for absences or ! for lates are selected as the category,
  584.      an accumulated total will be created automatically.  Previously
  585.      recorded accumulated totals will be deleted.
  586.  
  587.  
  588.  
  589.  
  590.  
  591.  
  592.  
  593.  
  594.  
  595.  
  596.  
  597.      page 9                      EDITING MARKS
  598.  
  599.      6. EDITING MARKS
  600.  
  601.      After selecting the course to edit, you will be allowed to change
  602.      any of the data that has been previously entered:  Just press the
  603.      letter corresponding to the incorrect item and type in the new
  604.      value.  The EDIT MARKS menu will then appear.  It has the
  605.      following 10 options:
  606.  
  607.      F1) EDIT STUDENT NAMES                 You can re-enter any
  608.                                             student name. The new list
  609.                                             can be sorted automatically.
  610.                                             Use to add an alias.
  611.  
  612.      F2) EDIT ENTERED MARKS                 You will be allowed to
  613.                                             change individual student
  614.                                             marks, as well as the data
  615.                                             for a given set of marks.
  616.  
  617.      F3) ADD A STUDENT                      New students can be added
  618.                                             to the class list.  All tests
  619.                                             missed will be set to 'abs'.
  620.  
  621.      F4) DELETE A STUDENT                   Students can be removed
  622.                                             from the class list.
  623.  
  624.      F5) RECORD ALL CHANGES                 All changes made are lost
  625.                                             unless this option is selected
  626.                                             before leaving this menu.
  627.  
  628.      F6) RECALCULATE TERM MARKS             The term marks for students 
  629.                                             are not recalculated after
  630.                                             editing unless this option
  631.                                             is selected.  This is to 
  632.                                             allow a teacher the privilege
  633.                                             of adjusting term marks.
  634.  
  635.      F7) SPREADSHEET                        This is the fastest way to
  636.                                             edit marks.  Up to 10 sets
  637.                                             of marks can be displayed
  638.                                             at one time for up to 15
  639.                                             students.
  640.  
  641.      F8) DELETE A SET OF MARKS/UN/CONSOLIDATE  Entire sets of marks can be
  642.                                                deleted or groups of marks
  643.                                                can be consolidated so that
  644.                                                specific weights can be
  645.                                                assigned.
  646.  
  647.      F9) RECALCULATE INDIVIDUAL TERM MARKS  Use this option to select 
  648.                                             individual students for
  649.                                             recalculation - non-selected
  650.                                             students will not be affected.
  651.  
  652.      F0) RETURN TO PREVIOUS MENU
  653.  
  654.  
  655.  
  656.  
  657.  
  658.  
  659.  
  660.  
  661.      
  662.  
  663.      page 10                    EDITING MARKS
  664.  
  665.      EDITING STUDENT NAMES
  666.  
  667.      After student names have been edited you will be given the option
  668.      of having them sorted alphabetically.  You can include a 10 character
  669.      alias or student number, so that class lists can be posted that pre-
  670.      serve the confidentiality of each student.  Press <Enter>, when
  671.      prompted, if you do not wish to assign an alias to the edited name.
  672.      This feature can be switched on or off from this menu.
  673.  
  674.      EDITING INDIVIDUAL MARKS
  675.  
  676.      This option will allow you to change any of the values that were
  677.      earlier assigned to a set of marks, such as weight etc.  An additional
  678.      feature is the ability to change the order in which the marks are
  679.      stored:  Thus, if you wish to have the fifth set of marks stored as
  680.      the second set, you simply change its order number from 5 to 2.  The
  681.      other sets of marks will be re-ordered automatically.  Select this
  682.      feature to scale marks, or to make a copy of a set of marks.  The
  683.      copy will be assigned the lower case category of the original (its
  684.      ASCII value plus 32), otherwise it will be identical in every
  685.      respect.
  686.  
  687.      SCALING
  688.  
  689.      If you wish to scale a set of marks, select the EDIT ENTERED MARKS
  690.      option from the EDIT MARKS menu.  When all the existing marks have
  691.      been displayed on the screen, press S to scale.  You will be warned
  692.      that scaling replaces recorded marks with scaled marks, and be given
  693.      a chance to abort.  If you continue, you will be allowed to adjust
  694.      the highest and lowest marks, the median, and the number of failures.
  695.      The program will then scale the recorded marks to reflect the desired
  696.      values.  It is suggested that you restrict scaling to TERM or REPORT
  697.      marks, since these marks can be re-calculated by the program if you
  698.      are not happy with the results of scaling.
  699.  
  700.      ADDING A STUDENT
  701.  
  702.      If new students have missed any evaluations due to their late arrival,
  703.      they will have an 'abs' recorded for each such missed mark.  You can
  704.      edit these later, if necessary, by selecting option 1) EDIT
  705.      INDIVIDUAL MARKS or option 7) SPREADSHEET.  After new students have
  706.      been added, you will be given the option of sorting the list.  To
  707.      add an alias to the new student, you can first switch on this feature.  
  708.      When you then enter a new name, you will be prompted for the student 
  709.      alias.
  710.  
  711.      DELETING A STUDENT
  712.  
  713.      When students are deleted all records for those students are lost, so
  714.      make sure that you have a printed record of their marks before
  715.      deleting them.
  716.  
  717.  
  718.  
  719.  
  720.  
  721.  
  722.  
  723.  
  724.  
  725.  
  726.  
  727.  
  728.  
  729.  
  730.      page 11                  EDITING MARKS
  731.  
  732.      RECORDING CHANGES
  733.  
  734.      To allow the user the option of experimenting with different
  735.      parameters such as weights of tests etc, changes made are not recorded
  736.      to disk right away.  This also gives the user a second chance to make
  737.      sure that any changes are to be made permanent.  Thus when you are
  738.      convinced that the changes that you have made are correct, you can
  739.      select this option to record them to disk.
  740.  
  741.      NOTE:  Whenever this option is exercised, the program will
  742.      automatically create a back up file before recording the changes to
  743.      disk.  This back up file will be named *.V*.  Eg. MCA0A.D01 would be
  744.      backed up as MCA0A.V01.  If your new file is damaged use the option
  745.      FILE MANAGER from the MAIN MENU to recover the backed up version.
  746.  
  747.      You will be warned if you try to leave the edit menu without first
  748.      recording all changes.  If you do not wish to record your changes,
  749.      press <N>.  The message WORKING! will appear to show that the
  750.      computer's memory is being cleared of changes to that course's data.
  751.  
  752.      RECALCULATING TERM MARKS
  753.  
  754.      When marks are edited, the term marks are not automatically
  755.      recalculated.  This is to allow a teacher to subjectively adjust term
  756.      marks where necessary.  If this were not so, changing a 49 to 50 would
  757.      not be possible, since the computer would automatically recalculate it
  758.      as a 49.  This option must be selected, however, if test marks are
  759.      edited which might affect the term mark.  This option only
  760.      recalculates the term marks for the current term.  Thus if marks for
  761.      term 2 have been entered, changing individual marks from term 1 will
  762.      not affect the term mark for term 1.  The term mark for term 1 would
  763.      have to be calculated manually and be edited itself.  To recalculate
  764.      the term marks for an individual student, select option F9).  To 
  765.      recalculate the term marks of all students, select option F6).
  766.      If you wish to use the pre-set category weights, you must consolidate
  767.      before recalculating the term marks.
  768.  
  769.      USING THE SPREADSHEET
  770.  
  771.      A. ENTERING MARKS
  772.  
  773.      To use the SPREADSHEET to enter marks for up to 9 sets of tests,
  774.      enter En where n is the number of tests.  Each test will be assigned
  775.      a weight and maximum mark of 100.  These values can be edited once
  776.      all marks have been entered.  This alternate way of entering marks
  777.      has the advantage of letting you enter marks by student rather than
  778.      by test.  The cursor moves horizontally rather than vertically.
  779.      When the last mark has been entered the program automatically
  780.      allows you to edit the test information for each of the entered
  781.      tests.
  782.  
  783.      B. EDITING MARKS
  784.  
  785.      To use the SPREADSHEET to edit marks, select up to 10 sets of marks
  786.      to be edited. When you have made your selection, these marks for the
  787.      first 15 students in your class will be displayed.  Press 'S' to see
  788.      the marks of more students, or 'M' to have more marks displayed.
  789.      Pressing 'Q' will return you to the EDIT MENU.
  790.  
  791.  
  792.  
  793.  
  794.      
  795.  
  796.      page 12                 EDITING MARKS
  797.  
  798.      To edit individual marks, press <Enter>. The first student name will
  799.      be highlighted (flashing), as will the top left mark.  To change
  800.      any mark, use the cursor keys to move around the spreadsheet (If
  801.      the cursor keys don't seem to work, try 'U' for up 'D' for down
  802.      'L' for left or 'R' for right) until the mark you wish to edit is
  803.      highlighted.  Now press <Enter> to edit this mark.  Enter the new
  804.      value and press <Enter>.
  805.  
  806.      AUTOMATIC EDITING MODE
  807.  
  808.      If you have a number of 'abs' or failing marks in a given column
  809.      for which you would like to enter new marks, move to the first
  810.      such mark in that column and press 'A' for AUTO MODE.  Now as you
  811.      enter each mark, the computer will automatically go down the
  812.      column until it finds the next 'abs' or failing mark.  Pressing
  813.      'O' at any time will get you (O)ut of AUTO MODE.
  814.  
  815.      NOTE: Please do not forget to recalculate the term marks (if
  816.      necessary) and to record all changes after leaving the
  817.      SPREADSHEET.
  818.  
  819.      DELETING A SET OF MARKS/UN/CONSOLIDATING
  820.  
  821.      When this option is selected, a list of the recorded marks will be
  822.      displayed.  Select the # of the set to be deleted and press Y to
  823.      delete the set or N if you have changed your mind.  Remember, no
  824.      changes are final until you select the option RECORD ALL CHANGES
  825.      from the EDIT MENU.  Thus you will have still have one more chance to
  826.      change your mind.  If you delete (T)erm, (E)xam, (F)inal or (Y)ear
  827.      marks, you run the risk of confusing the program, which could destroy
  828.      the validity of its calculations.  Make certain you know what you are
  829.      doing before deleting any of these categories.
  830.  
  831.      There are two reasons why you might wish to consolidate marks:
  832.  
  833.      1) It looks like you may exceed the maximum of 50 sets of marks
  834.         for each student, or
  835.      2) You wish to assign to each category of marks a certain weight
  836.         to be used in calculating the term mark.
  837.  
  838.      When you select this option a warning will be given advising you
  839.      to make certain that you have either backed up your data, or have
  840.      printed out a hard copy of the marks to be consolidated.  Once
  841.      marks have been consolidated, the original weights are made negative so
  842.      that only the consolidated marks are used when recalculating.
  843.      The program assumes that no more than 26 different categories (A-Z)
  844.      will be used in any one term.  You will be asked to select the
  845.      categories to be consolidated or press <Space> to consolidate all of them.
  846.      You can consolidate any or all terms, but remember, once a new term
  847.      has been started, earlier term marks can only be recalculated manually.
  848.      Once consolidation has occured, you might consider deleting the old
  849.      sets of marks to make room for the next term's marks.  If, after con-
  850.      solidation has occurred, you wish to change some recorded marks, delete
  851.      the consolidated "super" totals, then select UNconsolidate, which will
  852.      reset all the negative weights back to their original values.  Now edit
  853.      the marks as usual then re-consolidate once more.
  854.  
  855.  
  856.  
  857.  
  858.  
  859.      
  860.  
  861.  
  862.      page 13                  EDITING MARKS
  863.  
  864.      The consolidation process is as follows:
  865.      1) The first category in the current term is identified.
  866.      2) The entire current term is then searched for other marks in the
  867.         same category.
  868.      3) A new set of marks is then produced which represents the average
  869.         marks for that category based on the weights assigned to the
  870.         individual sets of marks.
  871.      4) All the original weights in this category are set to negative values.
  872.      5) The next category is selected.
  873.      6) Steps 2), 3), and 4) are repeated until all the categories have
  874.         been consolidated.
  875.  
  876.      Also, E, F, S, T, Y, !, and @ values are not affected by this procedure.
  877.  
  878.      Consolidation adds up the weights of all consolidated categories to
  879.      find a total weight for each category.  Use the RECORD MARKS MENU to
  880.      pre-set these weights to the desired proportions, then select
  881.      RECALCULATE TERM MARKS.
  882.  
  883.      If, after consolidation, you wish to edit individual marks, follow
  884.      this procedure:
  885.      1) Delete the consolidated "super" total mark sets.
  886.      2) Select UNconsolidate.
  887.      3) Edit the required marks, re-consolidate, then re-calculate.
  888.  
  889.      RESETTING LETTER GRADES
  890.  
  891.      The program has been designed to produce a default set of letter
  892.      grade values.  Each user is expected to reset these values to
  893.      reflect the evaluation policy of his/her department.  There are
  894.      two sets of letter grades:  The first is the lower bound of each
  895.      grade (eg. If B's lower bound is 75, and B-'s lower bound is 70,
  896.      then a mark from 70 to 74 would be printed as a B-); The second is
  897.      the mark value of each letter grade (eg. If B is set at 77, then
  898.      entering a B as a student grade will result as a 77 being
  899.      recorded.)  Letter grades and absolute marks can be entered
  900.      interchangeably ie, entering a 77 for the first student and a B
  901.      for the second would result in both students being assigned a 77.
  902.      The only legitimate letter grades are A+,A,A-,...,F+,F,F-.  Any
  903.      other letter might produce a mark of 100!  To eliminate a possible
  904.      letter grade as a choice, set its lower bound to 110.
  905.  
  906.  
  907.  
  908.  
  909.  
  910.  
  911.  
  912.  
  913.  
  914.  
  915.  
  916.  
  917.  
  918.  
  919.  
  920.  
  921.  
  922.  
  923.  
  924.  
  925.  
  926.      page 14                    PRINTING REPORTS
  927.  
  928.      7. PRINTING REPORTS
  929.  
  930.      If you wish to print out class lists with no marks, select item 8 from
  931.      the MAIN MENU.  You can then print class lists with from 0 to 35
  932.      vertical columns.  These lists are suitable for recording marks or for
  933.      attendance.  These lists are not sorted alphabetically.
  934.  
  935.      When item 3 is selected from the MAIN MENU, you are once again asked
  936.      to select the set of marks to be operated on.
  937.  
  938.      Once a set of marks has been selected, a list of the print
  939.      defaults is displayed.  These are described below:
  940.  
  941.      A) LINES PER INCH 6/4         The default is 6.
  942.  
  943.      B) CHARACTERS PER INCH 10/17  The default is 10, which allows up
  944.                                    to 10 sets of marks per student per
  945.                                    page.  17 allows up to 20 sets/page.
  946.  
  947.      C) CHART FORMAT               Prints class lists in chart format.
  948.  
  949.      D) IBM GRAPHIC CHRS           Uses graphic characters to create
  950.                                    the chart referred to in C).
  951.  
  952.      E) RANK STUDENTS              Prints the ranking of each student
  953.                                    in the class.
  954.  
  955.      F) FORMAT Abs Let %  Wt       Allows marks to be printed as
  956.                                    entered (A), as letter grades (L),
  957.                                    as percentages (P), or per weight (W).
  958.  
  959.      G) RANGE LOW PERCENT          Set the percent of the lowest
  960.                                    student to be printed.
  961.  
  962.      H) RANGE HIGH PERCENT         Set the percent of the highest
  963.                                    student to be printed.
  964.  
  965.      I) INCLUDE CODES              Refers to the optional 1 character
  966.                                    codes. If selected, failures will
  967.                                    automatically be coded with an F.
  968.  
  969.      J) INCLUDE MEDIANS            The median of each set of marks will
  970.                                    be printed.
  971.  
  972.      K) INCLUDE MEANS/S.D.         The mean (average) and standard
  973.                                    deviation of each set will be printed.
  974.  
  975.      L) INCLUDE % FAILURE          The % failure will be printed for
  976.                                    each set of marks.
  977.  
  978.      M) INCLUDE MAXIMUM MARK       The mark that each set is out of
  979.                                    will be printed.
  980.  
  981.      N) INCLUDE WEIGHT             The weight assigned to each set of
  982.                                    marks will be printed.
  983.  
  984.  
  985.  
  986.  
  987.  
  988.  
  989.  
  990.  
  991.  
  992.      page 15                 PRINTING REPORTS
  993.  
  994.      O) SELECT STUDENTS            Allows you to select by name those
  995.                                    students to be printed.
  996.  
  997.      P) PRINT Abs Est N/m Blank    Lets you choose the code to be
  998.                                    printed when a student is absent for
  999.                                    an evaluation.
  1000.  
  1001.      Most options can be switched to their alternate value by simply
  1002.      pressing the letter that corresponds to them.  The exceptions are
  1003.      G) and H) whose values must be entered.
  1004.  
  1005.      A) and B) allow you to select the print spacing most suited to
  1006.      your needs.  C) and D) allow you to use lines to separate
  1007.      individual marks.  Activate D) only if your printer is capable
  1008.      of printing these characters.  If your chart ends up with italic
  1009.      characters instead of lines, set D) back to N)o.
  1010.  
  1011.      E) will assign to each student his/her rank in the class.  These
  1012.      rankings will appear in the column to the left of the student
  1013.      names when class reports are printed.  The rank will appear to
  1014.      the right of the class median when individual reports are
  1015.      printed.
  1016.  
  1017.      F) allows you to select the form in which the marks will be
  1018.      printed.:
  1019.      (A)bsolute will print the marks exactly as entered.
  1020.      (L)etter will convert them to letter grades before printing.
  1021.      (P)ercent will convert them to percentages before printing.
  1022.      (W)eight prints the mark relative to the assigned weight (eg
  1023.      a mark of 50% on a test weighted at 30 would print as 15).
  1024.  
  1025.      G) and H) allow you to select the range of marks to be printed.
  1026.      For example, setting G) to 0 and H) to 49 will print only your
  1027.      failing student marks.  Set G) to 75 and H) to 100), and your
  1028.      honour list will be printed.  Note:  As a precaution set H) to 110
  1029.      to print any student who may have over 100%.
  1030.  
  1031.      Options I), J), K), L), M), and N) allow you to generate
  1032.      statistics for each set of marks.
  1033.  
  1034.      If you wish to produce reports on individual students, set option
  1035.      O) to Y.  You will be asked to select students by name.
  1036.  
  1037.      P) lets you use either (A)abs (E)est (N)n/m or (B)blank as
  1038.      the code for an evaluation that has been recorded as 'abs'.
  1039.      To force a REPORT MARK to be printed as N/M, edit the recorded
  1040.      report mark as 'abs' using the EDIT MENU, then select (N) here.
  1041.  
  1042.      After you have saved the print defaults, you will be asked to
  1043.      select the marks to be printed.  You can press A to select all of
  1044.      them, or an individual set, or a range of marks such as 5-9.
  1045.      Selected sets will be flagged with an asterisk.  When you have
  1046.      made your decision, press C to continue.
  1047.  
  1048.  
  1049.  
  1050.  
  1051.  
  1052.  
  1053.  
  1054.  
  1055.  
  1056.  
  1057.  
  1058.      page 16                   PRINTING REPORTS
  1059.  
  1060.      Once all calculations have been made, a new menu will appear with
  1061.      the following options:
  1062.  
  1063.      M Return to the MAIN menu.
  1064.      C Print a class report.
  1065.      A Print a class report using alias names.
  1066.      I Print individual report cards, one for each student.
  1067.      D Adjust the report date, or create a message.
  1068.      P Print more reports.
  1069.      R Re-direct the output.
  1070.      X Exit directly to DOS.
  1071.  
  1072.      C or A will produce class reports.  If more marks have been requested
  1073.      than can fit on one page, the program will automatically move to a
  1074.      new page, and print the heading on it before continuing. An FF to the
  1075.      left of a student's name indicates that his marks have been flip
  1076.      flopped.  C uses actual names while A uses alias' if they have been
  1077.      previously recorded.  If A is selected, the list will be sorted
  1078.      alphabetically by alias.
  1079.  
  1080.      If I is selected, you will be given the opportunity of adding
  1081.      comments to the report for each student.  If you decline, a space
  1082.      can be provided on each report for you to write in any comments
  1083.      by hand.  If you select this option, each student's marks will
  1084.      appear on the screen and you will be allowed to write up to three
  1085.      lines of comments for him/her. If you wish, you may draw on the
  1086.      bank of comments stored on disk:  Just press the   <  or  >  key.
  1087.      At this point you may also edit the number of days late and absent.
  1088.      Use the  -  and  +  keys to move between students.  (You can select
  1089.      any comment directly by typing its reference number.)
  1090.  
  1091.      NOTES:  This option will produce a *.C* file for each class.  Make
  1092.      sure you have at least 9K free on your disk before attempting this.
  1093.      If you have saved the days absent (category @) or late (category
  1094.      !), these will automatically be inserted into the report cards.
  1095.  
  1096.      The current date should appear as the report date.  Press D to alter
  1097.      the date.  If you press <Enter> the date of the last entered set of
  1098.      marks will appear, or you may enter the date of your choice. You may
  1099.      wish to replace the date with a message such as PERIOD #1.
  1100.  
  1101.      Pressing P will return you to the PRINT MENU so that you can print
  1102.      more reports.
  1103.  
  1104.      If you wish to send the ouput to a file rather than the printer,
  1105.      press R to redirect the output.  Now you can enter a new path name
  1106.      for the output, eg. C:\data\.  If you still wish to print the report,
  1107.      just type PRINTER as the path name.  Output can be directed to the
  1108.      screen by typing SCREEN as the path name.
  1109.  
  1110.      NOTES:  If your printer requires long strings of characters (eg some
  1111.      laser printers) for various functions, you must create a printer code
  1112.      file CODES.PRT using a word processor producing ASCII text.  The file
  1113.      must be stored with your data.  Entries must be separated by quotation
  1114.      marks.  The following 13 codes must be included (in this order):
  1115.      reset, form feed, condensed on, cond. off, elongated on, elong. off, 
  1116.      double strike on, ds off, unidirect'l on, unid. off, 4 lpi, 6 lpi, 8 lpi
  1117.                  
  1118.  
  1119.  
  1120.  
  1121.  
  1122.      page 17                 OTHER OPTIONS
  1123.  
  1124.      8. OTHER OPTIONS
  1125.  
  1126.      BAR GRAPHS
  1127.  
  1128.      This feature allows you to display or print a bar graph of any set or
  1129.      sets of marks that have been recorded.
  1130.  
  1131.      You are required to select the course from which the data is to be
  1132.      taken, then you must select the set (or sets) of marks to be
  1133.      displayed.  When more than one set is selected, each is assigned a
  1134.      different colour code for display purposes (colour monitors only),
  1135.      and a composite bar graph is produced. This may take a few minutes!
  1136.      
  1137.      The character used in the bar graph can be changed:  Select CONFIGURE
  1138.      PRINTER/SCREEN COLOURS from the MAIN MENU.
  1139.  
  1140.      MANAGING FILES
  1141.  
  1142.      This option allows you to make a back up copy of any data file,
  1143.      delete any data file, rename any data file, or recover a lost or
  1144.      damaged data file.  The back up files are named *.V* corresponding to
  1145.      the original *.D* filename.  Thus MAL5A.D02 would be backed up as
  1146.      MAL5A.V02.  You can back up a single file or all of them at once.
  1147.      Similarly, you can recover just one or all of them at once.
  1148.      This feature can be used to make a working copy of any file.  The
  1149.      new copy will be named starting with an X.  Thus MCA0A.D01 would be
  1150.      copied to XCA0A.D01.  Use this option before consolidating marks.
  1151.  
  1152.      This option was designed for those users unfamiliar with the DOS
  1153.      operating system.  If you have worked with DOS you might find it more
  1154.      convenient to do your file management while in DOS.
  1155.  
  1156.      CONVERSION TABLES
  1157.  
  1158.      The program will allow to to display or print sets of mark conversion
  1159.      tables.  You simply enter the mark that the test was out of (from 1 to
  1160.      200) and the mark you want it converted to (again from 1 to 200).
  1161.      You may select the marks to be calculated to either 0 or 1 decimal 
  1162.      places.
  1163.  
  1164.      COMPLETION TABLES
  1165.  
  1166.      Completion tables indicate the exam mark required to attain the desired
  1167.      final mark given the student's current mark.  Tables can be printed or 
  1168.      displayed for various exam weightings.
  1169.  
  1170.      SEATING PLANS
  1171.  
  1172.      Enter the information as you would a set of marks.  The description, 
  1173.      course code, teacher and date will be printed at the top of the plan.
  1174.      Assign each student a mark of the form RS where R is their row and S is
  1175.      their seat.  Thus 23 means second row, third seat.  The maximum mark
  1176.      will tell the program the number of rows and the number of seats in 
  1177.      each row.  Thus 56 means 5 rows, each with six seats.  Any arrangement
  1178.      from 41 to 99 will work.  Abs students will not be printed.  A class
  1179.      list suitable for attendance is also printed with the seating plan.
  1180.  
  1181.  
  1182.  
  1183.  
  1184.  
  1185.  
  1186.  
  1187.  
  1188.      page 18                  OTHER OPTIONS
  1189.  
  1190.      REDIRECTING OUTPUT
  1191.  
  1192.      If the data path was not set before starting (see set up), the program
  1193.      automatically will use the current directory as the data directory.
  1194.      This option will allow you to change the data directory to the one of
  1195.      your choice.  Here are some typical situations:
  1196.  
  1197.       System Directory                  Data Directory
  1198.           A:                                A:          (1 drive system)
  1199.           A:                                B:          (2 drive system)
  1200.           A:                                C:\DATA\       (floppy/hard)
  1201.           C:\MRP                            A:             (hard/floppy)
  1202.           C:\MRP                            C:\MRP\         (hard drive)
  1203.           C:\MRP                            C:\MRP\DATA\    (hard drive)
  1204.  
  1205.      Note:  The keyboard may lock up if you select a non-existent path.
  1206.  
  1207.  
  1208.                               APPENDICES
  1209.  
  1210.      1. CALCULATIONS
  1211.  
  1212.      The procedure by which marks are calculated is as follows:
  1213.  
  1214.      1) Each student is considered one at a time.
  1215.      2) Each test mark is divided by the maximum mark and then
  1216.         multiplied by the weight.
  1217.      3) A TOTAL MARK is found by summing all of these test marks.
  1218.      4) For each test that the student does not have an 'abs', the
  1219.         weights are added to produce a TOTAL WEIGHT.
  1220.      5) If the DROP LOWEST MARK option has been selected, the lowest
  1221.         (M)ajor test mark will be removed both from TOTAL MARK and TOTAL
  1222.         WEIGHT.  This only affects marks saved under category M.
  1223.      6) The TERM MARK is then calculated by dividing the TOTAL MARK
  1224.         by the TOTAL WEIGHT, and rounded off as in step 10).
  1225.      7) The EXAM MARK is calculated as in step 2).
  1226.      8) The TERM MARK is then multiplied by (100 - exam weight) and added
  1227.         to the EXAM MARK to form the REPORT MARK.
  1228.      9) If the FLIP-FLOP option has been selected, the weights for exam
  1229.         and term are reversed (but only if it results in a higher REPORT
  1230.         MARK for the student).
  1231.      10)The REPORT MARK is then rounded off (55.5 becomes 56 while 55.4
  1232.         would become 55).
  1233.      11)The YEAR MARK (say for a two term situation) is found by
  1234.         multiplying the first term's REPORT MARK by the % for first term
  1235.         and the second TERM MARK by (100 - % for first term) and adding
  1236.         them together.
  1237.      12)The FINAL REPORT mark is calculated as in step 8) but uses the
  1238.         YEAR MARK instead of the TERM MARK.  It too is rounded off as
  1239.         in step 10).
  1240.  
  1241.      NOTE:  You should verify that the program is producing the required
  1242.      results by taking the time to manually calculate a random selection
  1243.      of marks, using the above procedure, and comparing your answers to
  1244.      the computer's.  Remember to round off both TERM and REPORT marks.
  1245.  
  1246.  
  1247.  
  1248.  
  1249.  
  1250.  
  1251.  
  1252.  
  1253.  
  1254.      page 19                  CALCULATIONS
  1255.  
  1256.  
  1257.      TYPICAL PATTERNS   (m represents a test mark, R a report mark
  1258.                                                    T a term mark
  1259.      ONE TERM:    m m T, m m T E F                 E an exam mark, and
  1260.                                                    F a final mark)
  1261.      TWO TERMS:   m m T, m m T E R,
  1262.  
  1263.                   m m T E R m m T Y, m m T E R m m T Y E F
  1264.  
  1265.      THREE TERMS: m m T, m m T E R,
  1266.  
  1267.                   m m T E R m m T Y,
  1268.  
  1269.                   m m T E R m m T E R Y, m m T E R m m T E R m m T Y,
  1270.  
  1271.                   m m T E R m m T E R m m T Y E F
  1272.  
  1273.      FOUR TERMS:  similar to three terms.
  1274.  
  1275.           
  1276.  
  1277.      NOTE:  The final exam is assumed to cover the whole semester's
  1278.      work, not just the last term's.  If you are working in a two term
  1279.      system where the final exam only covers the second term's work,
  1280.      set up the course as though it were three terms - when all marks
  1281.      have been entered, the Y mark will be the final course mark.  An
  1282.      alternative would be to consider the exam as just another test,
  1283.      weight it accordingly, but don't use E as its category.  At the
  1284.      end of each term, enter a 'dummy' E exam to signal the computer
  1285.      that it is to calculate the REPORT mark.
  1286.  
  1287.      2. DATA FILE ORGANIZATION
  1288.  
  1289.      The program stores the data in two main files: MRX and c.Ds where c
  1290.      represents the course name and s its section number.  An example of
  1291.      each is given below:
  1292.  
  1293.      MRX           3                        (number of courses)
  1294.                    "MCA5A   .D01"         }
  1295.                    "MAT1A   .D05"         } their file names
  1296.                    "MAL5A   .D03"         }
  1297.  
  1298.      MCA5A.D01     "50","PHILLIPS",2,2,62.5,37.5,0,"Y","N",3
  1299.                    "JONES BOB           "
  1300.                    "SAMSON DONNA        aka SAMMY "   <-- an alias
  1301.                    "THOMAS PAUL         "
  1302.                    "TEST #1     ","SEP 07  ","M",40,50
  1303.                    "30.1"
  1304.                    " 24M"
  1305.                    " 12 "
  1306.                    "TERM MARK   ","SEP 07  ","T",100,100
  1307.                    " 75 "
  1308.                    " 60 "
  1309.                    " 30 "
  1310.  
  1311.  
  1312.  
  1313.  
  1314.  
  1315.  
  1316.  
  1317.  
  1318.  
  1319.  
  1320.  
  1321.  
  1322.      page 20               DATA FILE ORGANIZATION
  1323.  
  1324.      In line 1: 50       is the minimum passing percentage.
  1325.                 PHILLIPS is the teacher name.
  1326.                 2        is the number of sets of recorded marks.
  1327.                 2        is the number of terms.
  1328.                 62.5     is the % of the YEAR MARK for term 1.
  1329.                 37.5     is the % of the TERM MARK for term 2.
  1330.                 0        is the % of the TERM MARK for term 3.
  1331.                 Y        means that the FLIP-FLOP option was selected.
  1332.                 N        means that the DROP LOWEST MARK option was not.
  1333.                 3        is the number of students.
  1334.  
  1335.      In line 5: "TEST #1        " is the evaluation title.
  1336.                 "SEP 07  "        is the evaluation date.
  1337.                 "M"               gives the evaluation category.
  1338.                 40                is the mark the test was out of.
  1339.                 50                is the weight assigned to this mark.
  1340.  
  1341.      Notes:  The order of the marks corresponds to the order of the student
  1342.              names. If, for some reason, part of your data gets destroyed,
  1343.              and you have not made a back up, you might try a word processor
  1344.              to salvage what remains.  Follow the above guidelines when re-
  1345.              creating the file.
  1346.  
  1347.  
  1348.  
  1349.  
  1350.  
  1351.  
  1352.  
  1353.  
  1354.  
  1355.  
  1356.  
  1357.  
  1358.  
  1359.  
  1360.  
  1361.  
  1362.  
  1363.  
  1364.  
  1365.  
  1366.  
  1367.  
  1368.  
  1369.  
  1370.  
  1371.  
  1372.  
  1373.  
  1374.  
  1375.  
  1376.  
  1377.  
  1378.  
  1379.  
  1380.  
  1381.  
  1382.  
  1383.  
  1384.  
  1385.  
  1386.            
  1387.  
  1388.      page 21                     INDEX
  1389.  
  1390.      Absence,Attendance.....8,15        Lates.....................8 
  1391.      Add a Student..........9,10        Letter grades..........8,13 
  1392.      Alias................4,7,16        Limitations...............1 
  1393.      Auto Mode................12        Lines Per Inch...........14 
  1394.      AUTOEXEC.BAT..............2        Main Menu.................4 
  1395.      Back-ups..............11,17        Managing Files...........17 
  1396.      Bar Graphs...............17        Maximum Mark..............7 
  1397.      Calculations..........11,18        Means....................14 
  1398.      Category..................7        Medians..................14 
  1399.      Characters Per Inch......14        Memory Requirements.......1 
  1400.      Chart Format.............14        Minimum Passing %.........5 
  1401.      Class Lists..............14        MRL.......................2 
  1402.      Class Reports............16        MRO.PRT...................2 
  1403.      Codes..................8,14        MRX.......................2 
  1404.      CODES.PRT..............2,16        Number of Terms...........5 
  1405.      Comments...............1,16        Printer codes.....2,4,15,16
  1406.      Completion tables......4,17        Printing Reports.........14 
  1407.      Configure Printer.........4        Program Files.............1 
  1408.      Consolidating..........9,12        Ranking Students......14,15 
  1409.      Conversion Tables........17        Recalculating Marks....9,11 
  1410.      Copying a set of marks...10        Record Marks Menu.........4 
  1411.      Course Name...............5        Recording Changes......9,11 
  1412.      Data File Organization...19        Recording Marks........7,11 
  1413.      Data Path..............3,17        Redirect Output.......16,18 
  1414.      Dates..................7,16        Seating plans......4,7,8,17 
  1415.      Delete a Student.......9,10        Scaling..................10 
  1416.      Deleting Marks.........9,12        Section Number............5 
  1417.      Disclaimers..............21        Selecting Students.......15 
  1418.      Drop Lowest Mark..........5        Setting Up A New Course...5 
  1419.      Editing Marks.......9,10,11        Spreadsheet..........8,9,11 
  1420.      Editing Names/Alias'...9,10        Standard Deviation.......15 
  1421.      Estimated Marks...........8        Statistics...............15 
  1422.      File Manager.............17        Student Names..........6,10 
  1423.      Fip-Flop...............5,16        System Setup..............4 
  1424.      Floppy Disk.............2,3        Teacher Name..............5 
  1425.      Format................14,15        Unconsolidate marks......12
  1426.      Graphic Characters....14,15        Weight....................8 
  1427.      Hard Disk.................3        Working Copy.............17 
  1428.      Individual Reports.......16        Year To Date Mark.........6
  1429.                                                                    
  1430.  
  1431.                                                                    
  1432.  
  1433.  
  1434.  
  1435.  
  1436.  
  1437.  
  1438.  
  1439.  
  1440.  
  1441.  
  1442.  
  1443.  
  1444.  
  1445.  
  1446.  
  1447.  
  1448.  
  1449.  
  1450.  
  1451.  
  1452.  
  1453.      page 22               USER REGISTRATION
  1454.  
  1455.      The author, hereby, gives permission for anyone to copy and
  1456.      distribute any of the files found on this diskette for which
  1457.      the author holds a legal copyright.  This does not include any
  1458.      DOS operating system files or other such files for which the
  1459.      author holds no legal copyright. The program files may not be
  1460.      altered in any way without the express written consent of the
  1461.      author.  The author is not responsible for any damages which
  1462.      might result through the use of this program:  Use at you own
  1463.      risk.  Use of this program shall be considered as acceptance
  1464.      of these disclaimers.
  1465.  
  1466.      OTHER SHAREWARE BY THE SAME AUTHOR
  1467.  
  1468.      SCHOOL ACCOUNTANT Plus     - Enables the school administrator to
  1469.                                   manage departmental accounts.
  1470.  
  1471.      TIME-TABLE Plus            - Creates new student time-tables while
  1472.                                   managing class sizes.  This program
  1473.                                   is intended to time-table a school of
  1474.                                   up to 2000 students (semestered or not).
  1475.  
  1476.      DEPARTMENT RECORD Plus     - Creates median sheets for department
  1477.                                   exam and report marks. May be used in
  1478.                                   conjunction with MARK RECORD Plus.
  1479.  
  1480.      ATTENDANCE Plus            - Creates a daily absence list.  Uses a
  1481.                                   school data base to access students'
  1482.                                   phone numbers etc.
  1483.  
  1484.      MARK RECORD Plus USER REGISTRATION
  1485.  
  1486.      As a registered user you will be notified of any new versions
  1487.      and will be eligible for any required user support.
  1488.      If you wish to become a registered user, please fill out the
  1489.      registration form and send it together with a check or money
  1490.      order for $20 to the following address:
  1491.                         W. A. Phillips
  1492.                         12 Beacon Avenue
  1493.                         Hamilton, Ontario
  1494.                         Canada
  1495.                         L8T 2N3   phone (416) 529-7509
  1496.      ----------------------------------------------------------------------
  1497.      MARK RECORD Plus REGISTRATION FORM    CURRENT VERSION:____________
  1498.  
  1499.      DISKETTE FORMAT (3.5 OR 5.25):_________ !!!! (VERY IMPORTANT)
  1500.  
  1501.      NAME: ___________________________   SCHOOL:_______________________
  1502.  
  1503.      MAILING ADDRESS:  _________________________________________
  1504.  
  1505.                        _________________________________________
  1506.  
  1507.                        _________________________________________
  1508.  
  1509.      POSTAL CODE:  _______________   PHONE:  (     ) __________________
  1510.      ----------------------------------------------------------------------
  1511.      NOTE:  No registration fee is required for any teacher 
  1512.             employed by the Hamilton Board of Education.
  1513.